home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / wor / disk1121.zip / FLOPPY.BAT < prev    next >
DOS Batch File  |  1989-11-02  |  2KB  |  71 lines

  1. ECHO off
  2. if x%1==x goto missing
  3.  
  4. ECHO -
  5. ECHO   This batch file will install MAGREAD and MAGDEMO on your four (4)
  6. ECHO   floppies.
  7. ECHO -
  8. ECHO   The MAGREAD.ARC disk should be in drive %1
  9. ECHO -
  10. ECHO   The first of the four floppies should be in drive %2
  11. ECHO   This first floppy will be the MAGREAD system disk.
  12. ECHO -
  13. ECHO   If you wish to abort, press CTRL-BREAK now...  Otherwise...
  14. pause
  15. %2
  16. ECHO ..Copying Files From MAGREAD disk..
  17. ECHO ...Creating MAGREAD system disk...
  18. %1ARCE %1MAGREAD MAGREAD.* README. FLOPPY.INI
  19. COPY FLOPPY.INI MAGREAD.INI
  20. DEL FLOPPY.INI
  21.  
  22. ECHO ..Please switch floppies in drive %2 a this time..
  23. ECHO ..This next disk will contain the USA demo..
  24. pause
  25. %1ARCE %1MAGDEMO USA.* NE.MGR CONN.MGR NEVADA.MGR ADVER.MGR
  26.  
  27. ECHO ..Please switch floppies in drive %2 a this time..
  28. ECHO ..This next disk will contain the CHEM and HOWTO demos..
  29. pause
  30. %1ARCE %1MAGDEMO CHEM.MAG TABLE6.MGR
  31. %1ARCE %1MAGREAD *.MGR *.MAG
  32.  
  33. ECHO ..Please switch floppies in drive %2 a this time..
  34. ECHO ..This next disk will contain the TIME demo..
  35. pause
  36. %1ARCE %1MAGDEMO TIME*.* ROME*.MGR AMER*.MGR
  37.  
  38. ECHO ..Installation Complete..
  39. GOTO finished
  40.  
  41. : missing
  42. ECHO -
  43. ECHO   The format for using FLOPPY.BAT is
  44. ECHO -
  45. ECHO    FLOPPY source.drive destination.drive
  46. ECHO -
  47. ECHO   an example would be...
  48. ECHO -
  49. ECHO    FLOPPY A: B:
  50. ECHO -
  51. ECHO   and in this case you would put the MAGREAD.ARC disk in drive A: and put the
  52. ECHO   first of four (4) formated 360K floppy disks in drive B:
  53.  
  54. : finished
  55. ECHO -
  56. ECHO -
  57. ECHO         To Read a Sample Hypertext File,
  58. ECHO         Type One of the Following:
  59. ECHO -
  60. ECHO                   MAGREAD USA
  61. ECHO                   MAGREAD TIME
  62. ECHO                   MAGREAD CHEM
  63. ECHO                   MAGREAD HOWTO
  64. ECHO -
  65. ECHO    Some helpful hints can be found in MAGREAD.DOC and README.
  66. ECHO    These files can be Displayed with the DOS TYPE command.
  67. ECHO -
  68. ECHO    To see these instructions again use the DOS TYPE command on the file
  69. ECHO    FLOPPY.BAT.
  70. ECHO                                           THANK YOU.
  71.